Contract Overview
Balance:
0 MATIC
My Name Tag:
Not Available
TokenTracker:
Txn Hash |
Method
|
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0x3a5791723e3afea6241b55e8416933bcce2a8a5ad0d6ce7b3486498f27340476 | Transfer | 23396956 | 444 days 8 hrs ago | 0xc51624202b1ea4f1237c3c81646226a8f9680ae7 | IN | 0x7bf30d704adf961f0050f7979302d57133f9d130 | 0 MATIC | 0.000154622999 | |
0x33ad674648524fc6b5c3042323d036bc467eee7c78144a3e35f76d332edb54c7 | Transfer | 23396806 | 444 days 8 hrs ago | 0x9b0f98a8f16b1e26aa3fe40df87de271878b5c4a | IN | 0x7bf30d704adf961f0050f7979302d57133f9d130 | 0 MATIC | 0.000154622999 | |
0xdde695a6d32210bf7ebdec74b5cf755f308e474609d253f2c4195f9a7b7443b5 | Mint | 23396536 | 444 days 9 hrs ago | 0x9b0f98a8f16b1e26aa3fe40df87de271878b5c4a | IN | 0x7bf30d704adf961f0050f7979302d57133f9d130 | 0 MATIC | 0.0001763875 | |
0x5b98cafdd31ecd78c251753ec9e45a2bee8ad8dfc77c31e136a6d16193476420 | 0x60806040 | 23396510 | 444 days 9 hrs ago | 0x9b0f98a8f16b1e26aa3fe40df87de271878b5c4a | IN | Create: Hamburguesa | 0 MATIC | 0.002190687506 |
[ Download CSV Export ]
Contract Name:
Hamburguesa
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-01-01 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/Hamburguesa.sol pragma solidity ^0.8.0; contract Hamburguesa is ERC20, Ownable { constructor() ERC20(unicode"Hamburguesa de 1€ coin", "HDUEC") {} function mint(address to, uint amount) public onlyOwner { _mint(to, amount); } function burn(address account, uint256 amount) public onlyOwner { _burn(account, amount); } }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252601881527f48616d62757267756573612064652031e282ac20636f696e0000000000000000602080830191825283518085019094526005845264484455454360d81b908401528151919291620000749160039162000103565b5080516200008a90600490602084019062000103565b505050620000a7620000a1620000ad60201b60201c565b620000b1565b620001e6565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011190620001a9565b90600052602060002090601f01602090048101928262000135576000855562000180565b82601f106200015057805160ff191683800117855562000180565b8280016001018555821562000180579182015b828111156200018057825182559160200191906001019062000163565b506200018e92915062000192565b5090565b5b808211156200018e576000815560010162000193565b600181811c90821680620001be57607f821691505b60208210811415620001e057634e487b7160e01b600052602260045260246000fd5b50919050565b610d8280620001f66000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d714610209578063a9059cbb1461021c578063dd62ed3e1461022f578063f2fde38b1461026857600080fd5b8063715018a6146101cb5780638da5cb5b146101d357806395d89b41146101ee5780639dc29fac146101f657600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461017a57806340c10f191461018d57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d61027b565b60405161011a9190610c42565b60405180910390f35b610136610131366004610c18565b61030d565b604051901515815260200161011a565b6002545b60405190815260200161011a565b610136610166366004610bdc565b610323565b6040516012815260200161011a565b610136610188366004610c18565b6103d2565b6101a061019b366004610c18565b61040e565b005b61014a6101b0366004610b87565b6001600160a01b031660009081526020819052604090205490565b6101a0610446565b6005546040516001600160a01b03909116815260200161011a565b61010d61047c565b6101a0610204366004610c18565b61048b565b610136610217366004610c18565b6104bf565b61013661022a366004610c18565b610558565b61014a61023d366004610ba9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101a0610276366004610b87565b610565565b60606003805461028a90610cfb565b80601f01602080910402602001604051908101604052809291908181526020018280546102b690610cfb565b80156103035780601f106102d857610100808354040283529160200191610303565b820191906000526020600020905b8154815290600101906020018083116102e657829003601f168201915b5050505050905090565b600061031a338484610600565b50600192915050565b6000610330848484610725565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103ba5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103c78533858403610600565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161031a918590610409908690610ccc565b610600565b6005546001600160a01b031633146104385760405162461bcd60e51b81526004016103b190610c97565b61044282826108f4565b5050565b6005546001600160a01b031633146104705760405162461bcd60e51b81526004016103b190610c97565b61047a60006109d3565b565b60606004805461028a90610cfb565b6005546001600160a01b031633146104b55760405162461bcd60e51b81526004016103b190610c97565b6104428282610a25565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105415760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103b1565b61054e3385858403610600565b5060019392505050565b600061031a338484610725565b6005546001600160a01b0316331461058f5760405162461bcd60e51b81526004016103b190610c97565b6001600160a01b0381166105f45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103b1565b6105fd816109d3565b50565b6001600160a01b0383166106625760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b1565b6001600160a01b0382166106c35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107895760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b1565b6001600160a01b0382166107eb5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b1565b6001600160a01b038316600090815260208190526040902054818110156108635760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103b1565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061089a908490610ccc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108e691815260200190565b60405180910390a350505050565b6001600160a01b03821661094a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103b1565b806002600082825461095c9190610ccc565b90915550506001600160a01b03821660009081526020819052604081208054839290610989908490610ccc565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610a855760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103b1565b6001600160a01b03821660009081526020819052604090205481811015610af95760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103b1565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610b28908490610ce4565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610718565b80356001600160a01b0381168114610b8257600080fd5b919050565b600060208284031215610b9957600080fd5b610ba282610b6b565b9392505050565b60008060408385031215610bbc57600080fd5b610bc583610b6b565b9150610bd360208401610b6b565b90509250929050565b600080600060608486031215610bf157600080fd5b610bfa84610b6b565b9250610c0860208501610b6b565b9150604084013590509250925092565b60008060408385031215610c2b57600080fd5b610c3483610b6b565b946020939093013593505050565b600060208083528351808285015260005b81811015610c6f57858101830151858201604001528201610c53565b81811115610c81576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610cdf57610cdf610d36565b500190565b600082821015610cf657610cf6610d36565b500390565b600181811c90821680610d0f57607f821691505b60208210811415610d3057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220c5f784f3e8c1efab5598f68c6490c5fe4c8f8ad37a3470be74e04f253f65d87a64736f6c63430008070033
Deployed ByteCode Sourcemap
19217:328:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6655:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8822:169;;;;;;:::i;:::-;;:::i;:::-;;;1613:14:1;;1606:22;1588:41;;1576:2;1561:18;8822:169:0;1448:187:1;7775:108:0;7863:12;;7775:108;;;7161:25:1;;;7149:2;7134:18;7775:108:0;7015:177:1;9473:492:0;;;;;;:::i;:::-;;:::i;7617:93::-;;;7700:2;7339:36:1;;7327:2;7312:18;7617:93:0;7197:184:1;10374:215:0;;;;;;:::i;:::-;;:::i;19337:92::-;;;;;;:::i;:::-;;:::i;:::-;;7946:127;;;;;;:::i;:::-;-1:-1:-1;;;;;8047:18:0;8020:7;8047:18;;;;;;;;;;;;7946:127;18329:103;;;:::i;17678:87::-;17751:6;;17678:87;;-1:-1:-1;;;;;17751:6:0;;;1386:51:1;;1374:2;1359:18;17678:87:0;1240:203:1;6874:104:0;;;:::i;19437:105::-;;;;;;:::i;:::-;;:::i;11092:413::-;;;;;;:::i;:::-;;:::i;8286:175::-;;;;;;:::i;:::-;;:::i;8524:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8640:18:0;;;8613:7;8640:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8524:151;18587:201;;;;;;:::i;:::-;;:::i;6655:100::-;6709:13;6742:5;6735:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6655:100;:::o;8822:169::-;8905:4;8922:39;4390:10;8945:7;8954:6;8922:8;:39::i;:::-;-1:-1:-1;8979:4:0;8822:169;;;;:::o;9473:492::-;9613:4;9630:36;9640:6;9648:9;9659:6;9630:9;:36::i;:::-;-1:-1:-1;;;;;9706:19:0;;9679:24;9706:19;;;:11;:19;;;;;;;;4390:10;9706:33;;;;;;;;9758:26;;;;9750:79;;;;-1:-1:-1;;;9750:79:0;;4468:2:1;9750:79:0;;;4450:21:1;4507:2;4487:18;;;4480:30;4546:34;4526:18;;;4519:62;-1:-1:-1;;;4597:18:1;;;4590:38;4645:19;;9750:79:0;;;;;;;;;9865:57;9874:6;4390:10;9915:6;9896:16;:25;9865:8;:57::i;:::-;-1:-1:-1;9953:4:0;;9473:492;-1:-1:-1;;;;9473:492:0:o;10374:215::-;4390:10;10462:4;10511:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10511:34:0;;;;;;;;;;10462:4;;10479:80;;10502:7;;10511:47;;10548:10;;10511:47;:::i;:::-;10479:8;:80::i;19337:92::-;17751:6;;-1:-1:-1;;;;;17751:6:0;4390:10;17898:23;17890:68;;;;-1:-1:-1;;;17890:68:0;;;;;;;:::i;:::-;19404:17:::1;19410:2;19414:6;19404:5;:17::i;:::-;19337:92:::0;;:::o;18329:103::-;17751:6;;-1:-1:-1;;;;;17751:6:0;4390:10;17898:23;17890:68;;;;-1:-1:-1;;;17890:68:0;;;;;;;:::i;:::-;18394:30:::1;18421:1;18394:18;:30::i;:::-;18329:103::o:0;6874:104::-;6930:13;6963:7;6956:14;;;;;:::i;19437:105::-;17751:6;;-1:-1:-1;;;;;17751:6:0;4390:10;17898:23;17890:68;;;;-1:-1:-1;;;17890:68:0;;;;;;;:::i;:::-;19512:22:::1;19518:7;19527:6;19512:5;:22::i;11092:413::-:0;4390:10;11185:4;11229:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11229:34:0;;;;;;;;;;11282:35;;;;11274:85;;;;-1:-1:-1;;;11274:85:0;;6451:2:1;11274:85:0;;;6433:21:1;6490:2;6470:18;;;6463:30;6529:34;6509:18;;;6502:62;-1:-1:-1;;;6580:18:1;;;6573:35;6625:19;;11274:85:0;6249:401:1;11274:85:0;11395:67;4390:10;11418:7;11446:15;11427:16;:34;11395:8;:67::i;:::-;-1:-1:-1;11493:4:0;;11092:413;-1:-1:-1;;;11092:413:0:o;8286:175::-;8372:4;8389:42;4390:10;8413:9;8424:6;8389:9;:42::i;18587:201::-;17751:6;;-1:-1:-1;;;;;17751:6:0;4390:10;17898:23;17890:68;;;;-1:-1:-1;;;17890:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18676:22:0;::::1;18668:73;;;::::0;-1:-1:-1;;;18668:73:0;;3251:2:1;18668:73:0::1;::::0;::::1;3233:21:1::0;3290:2;3270:18;;;3263:30;3329:34;3309:18;;;3302:62;-1:-1:-1;;;3380:18:1;;;3373:36;3426:19;;18668:73:0::1;3049:402:1::0;18668:73:0::1;18752:28;18771:8;18752:18;:28::i;:::-;18587:201:::0;:::o;14776:380::-;-1:-1:-1;;;;;14912:19:0;;14904:68;;;;-1:-1:-1;;;14904:68:0;;6046:2:1;14904:68:0;;;6028:21:1;6085:2;6065:18;;;6058:30;6124:34;6104:18;;;6097:62;-1:-1:-1;;;6175:18:1;;;6168:34;6219:19;;14904:68:0;5844:400:1;14904:68:0;-1:-1:-1;;;;;14991:21:0;;14983:68;;;;-1:-1:-1;;;14983:68:0;;3658:2:1;14983:68:0;;;3640:21:1;3697:2;3677:18;;;3670:30;3736:34;3716:18;;;3709:62;-1:-1:-1;;;3787:18:1;;;3780:32;3829:19;;14983:68:0;3456:398:1;14983:68:0;-1:-1:-1;;;;;15064:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15116:32;;7161:25:1;;;15116:32:0;;7134:18:1;15116:32:0;;;;;;;;14776:380;;;:::o;11995:733::-;-1:-1:-1;;;;;12135:20:0;;12127:70;;;;-1:-1:-1;;;12127:70:0;;5640:2:1;12127:70:0;;;5622:21:1;5679:2;5659:18;;;5652:30;5718:34;5698:18;;;5691:62;-1:-1:-1;;;5769:18:1;;;5762:35;5814:19;;12127:70:0;5438:401:1;12127:70:0;-1:-1:-1;;;;;12216:23:0;;12208:71;;;;-1:-1:-1;;;12208:71:0;;2444:2:1;12208:71:0;;;2426:21:1;2483:2;2463:18;;;2456:30;2522:34;2502:18;;;2495:62;-1:-1:-1;;;2573:18:1;;;2566:33;2616:19;;12208:71:0;2242:399:1;12208:71:0;-1:-1:-1;;;;;12376:17:0;;12352:21;12376:17;;;;;;;;;;;12412:23;;;;12404:74;;;;-1:-1:-1;;;12404:74:0;;4061:2:1;12404:74:0;;;4043:21:1;4100:2;4080:18;;;4073:30;4139:34;4119:18;;;4112:62;-1:-1:-1;;;4190:18:1;;;4183:36;4236:19;;12404:74:0;3859:402:1;12404:74:0;-1:-1:-1;;;;;12514:17:0;;;:9;:17;;;;;;;;;;;12534:22;;;12514:42;;12578:20;;;;;;;;:30;;12550:6;;12514:9;12578:30;;12550:6;;12578:30;:::i;:::-;;;;;;;;12643:9;-1:-1:-1;;;;;12626:35:0;12635:6;-1:-1:-1;;;;;12626:35:0;;12654:6;12626:35;;;;7161:25:1;;7149:2;7134:18;;7015:177;12626:35:0;;;;;;;;12116:612;11995:733;;;:::o;13015:399::-;-1:-1:-1;;;;;13099:21:0;;13091:65;;;;-1:-1:-1;;;13091:65:0;;6857:2:1;13091:65:0;;;6839:21:1;6896:2;6876:18;;;6869:30;6935:33;6915:18;;;6908:61;6986:18;;13091:65:0;6655:355:1;13091:65:0;13247:6;13231:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13264:18:0;;:9;:18;;;;;;;;;;:28;;13286:6;;13264:9;:28;;13286:6;;13264:28;:::i;:::-;;;;-1:-1:-1;;13308:37:0;;7161:25:1;;;-1:-1:-1;;;;;13308:37:0;;;13325:1;;13308:37;;7149:2:1;7134:18;13308:37:0;;;;;;;19337:92;;:::o;18948:191::-;19041:6;;;-1:-1:-1;;;;;19058:17:0;;;-1:-1:-1;;;;;;19058:17:0;;;;;;;19091:40;;19041:6;;;19058:17;19041:6;;19091:40;;19022:16;;19091:40;19011:128;18948:191;:::o;13747:591::-;-1:-1:-1;;;;;13831:21:0;;13823:67;;;;-1:-1:-1;;;13823:67:0;;5238:2:1;13823:67:0;;;5220:21:1;5277:2;5257:18;;;5250:30;5316:34;5296:18;;;5289:62;-1:-1:-1;;;5367:18:1;;;5360:31;5408:19;;13823:67:0;5036:397:1;13823:67:0;-1:-1:-1;;;;;13990:18:0;;13965:22;13990:18;;;;;;;;;;;14027:24;;;;14019:71;;;;-1:-1:-1;;;14019:71:0;;2848:2:1;14019:71:0;;;2830:21:1;2887:2;2867:18;;;2860:30;2926:34;2906:18;;;2899:62;-1:-1:-1;;;2977:18:1;;;2970:32;3019:19;;14019:71:0;2646:398:1;14019:71:0;-1:-1:-1;;;;;14126:18:0;;:9;:18;;;;;;;;;;14147:23;;;14126:44;;14192:12;:22;;14164:6;;14126:9;14192:22;;14164:6;;14192:22;:::i;:::-;;;;-1:-1:-1;;14232:37:0;;7161:25:1;;;14258:1:0;;-1:-1:-1;;;;;14232:37:0;;;;;7149:2:1;7134:18;14232:37:0;7015:177:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1640:597::-;1752:4;1781:2;1810;1799:9;1792:21;1842:6;1836:13;1885:6;1880:2;1869:9;1865:18;1858:34;1910:1;1920:140;1934:6;1931:1;1928:13;1920:140;;;2029:14;;;2025:23;;2019:30;1995:17;;;2014:2;1991:26;1984:66;1949:10;;1920:140;;;2078:6;2075:1;2072:13;2069:91;;;2148:1;2143:2;2134:6;2123:9;2119:22;2115:31;2108:42;2069:91;-1:-1:-1;2221:2:1;2200:15;-1:-1:-1;;2196:29:1;2181:45;;;;2228:2;2177:54;;1640:597;-1:-1:-1;;;1640:597:1:o;4675:356::-;4877:2;4859:21;;;4896:18;;;4889:30;4955:34;4950:2;4935:18;;4928:62;5022:2;5007:18;;4675:356::o;7386:128::-;7426:3;7457:1;7453:6;7450:1;7447:13;7444:39;;;7463:18;;:::i;:::-;-1:-1:-1;7499:9:1;;7386:128::o;7519:125::-;7559:4;7587:1;7584;7581:8;7578:34;;;7592:18;;:::i;:::-;-1:-1:-1;7629:9:1;;7519:125::o;7649:380::-;7728:1;7724:12;;;;7771;;;7792:61;;7846:4;7838:6;7834:17;7824:27;;7792:61;7899:2;7891:6;7888:14;7868:18;7865:38;7862:161;;;7945:10;7940:3;7936:20;7933:1;7926:31;7980:4;7977:1;7970:15;8008:4;8005:1;7998:15;7862:161;;7649:380;;;:::o;8034:127::-;8095:10;8090:3;8086:20;8083:1;8076:31;8126:4;8123:1;8116:15;8150:4;8147:1;8140:15
Swarm Source
ipfs://c5f784f3e8c1efab5598f68c6490c5fe4c8f8ad37a3470be74e04f253f65d87a
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|