Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 15 from a total of 15 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 17108768 | 663 days ago | IN | 0 ETH | 0.00129771 | ||||
Transfer | 17097131 | 665 days ago | IN | 0 ETH | 0.00134947 | ||||
Transfer | 17097121 | 665 days ago | IN | 0 ETH | 0.00110349 | ||||
Transfer | 17097111 | 665 days ago | IN | 0 ETH | 0.00191036 | ||||
Transfer | 17093064 | 665 days ago | IN | 0 ETH | 0.00215656 | ||||
Transfer | 17093015 | 665 days ago | IN | 0 ETH | 0.00189638 | ||||
Transfer | 17092976 | 665 days ago | IN | 0 ETH | 0.00189601 | ||||
Transfer | 17092931 | 665 days ago | IN | 0 ETH | 0.00215023 | ||||
Transfer | 17092647 | 665 days ago | IN | 0 ETH | 0.00191543 | ||||
Transfer | 17092565 | 665 days ago | IN | 0 ETH | 0.00174791 | ||||
Transfer | 17092307 | 665 days ago | IN | 0 ETH | 0.00200973 | ||||
Transfer | 17068363 | 669 days ago | IN | 0 ETH | 0.00115841 | ||||
Approve | 17041664 | 673 days ago | IN | 0 ETH | 0.00116473 | ||||
Approve | 17041627 | 673 days ago | IN | 0 ETH | 0.00106637 | ||||
Approve | 16635602 | 730 days ago | IN | 0 ETH | 0.00230782 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
CDMToken
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Unlicensed pragma solidity 0.8.9; /* @author: 0xfd3495 @www: cyclechain.io */ import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; // Debugging // import "hardhat/console.sol"; contract CDMToken is ERC20, Ownable { /** * * Token Allocation Wallets * */ // name => uint160(addr) | uint96(percent) mapping (string => uint256) wallets; constructor() ERC20("Casino De Meta", "CDM") { _mint(msg.sender, 100_000_000 * 10 ** decimals()); /** * Initiliaze wallets with percent for Token Allocation * * @note: This section might be via deploy params */ /** * Team wallet * * @percent: 12% * */ wallets["team"] = compose(0xD06AF999fed4213419c5bD23716F94E500A5d1d8, 12); /** * Seed sales Wallet * * @percent: 3% */ wallets["seed_sale"] = compose(0x4202a81f7E80834FE0b117EAf8ef4A49416BE848, 3); /** * Private Sales Wallet * * @percent: 5% */ wallets["private_sale"] = compose(0x5cff68cb84DfCEd2F4893dAEBD00c313262AD397, 5); /** * Public Sales Wallet * * @percent: 10% */ wallets["public_sale"] = compose(0x8Ce5a7Cd9CcFDC7a3BA0f1d6347c770F9785ef87, 10); /** * Business Wallet * * @percent: 10% */ wallets["business"] = compose(0xA5209f6caa6a9701dAECC0ed768b93E236888F1c, 10); /** * Marketing Wallet * * @percent: 10% */ wallets["marketing"] = compose(0xe698e63712Db23Be29d5B648559313eAca481a7E, 10); /** * Rewards Wallet * * @percent: 40% */ wallets["rewards"] = compose(0x60affF93A69b4F42154CAdab0a1d0633969415fa, 40); /** * LP Wallet * * @percent: 3% */ wallets["lp"] = compose(0x934bf455FC0E52e58034c4ee3DD34CbFa400700E, 3); /** * Foundation Wallet * * @percent: 7% */ wallets["foundation"] = compose(0x764989B4371A0Db90e039bd6c0F0409a8DbdB479, 7); multiTransfer(); } function decimals() public pure override returns (uint8){ return 6; } // Multi transfer function multiTransfer() internal onlyOwner{ address owner = _msgSender(); uint256 staticBalance = balanceOf(owner); // eq to totalSupply string[9] memory walletNames = ["team", "seed_sale", "private_sale", "public_sale", "business", "marketing", "rewards", "lp", "foundation"]; for (uint i = 0; i < walletNames.length; i++) { (address wallet, uint96 percent) = raze(wallets[walletNames[i]]); uint256 value = 0; unchecked{ value = staticBalance * uint256(percent * 10) / 1000; } _transfer(owner, wallet, value); } } function compose(address addr, uint96 percent) internal pure returns(uint256){ require(percent <= 100 && addr != address(0)); return uint256(uint256(uint160(address(addr))) | uint256(uint96(percent)) << 160); } function raze(uint256 composedValue) internal pure returns(address addr, uint96 percent){ addr = address(uint160(uint256(composedValue))); percent = uint96(composedValue >> 160); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // 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; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":[],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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
60806040523480156200001157600080fd5b506040518060400160405280600e81526020017f436173696e6f204465204d6574610000000000000000000000000000000000008152506040518060400160405280600381526020017f43444d000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000d58565b508060049080519060200190620000af92919062000d58565b505050620000d2620000c6620003b960201b60201c565b620003c160201b60201c565b6200011233620000e76200048760201b60201c565b600a620000f5919062000fa2565b6305f5e10062000106919062000ff3565b6200049060201b60201c565b6200013973d06af999fed4213419c5bd23716f94e500a5d1d8600c6200060960201b60201c565b60066040516200014990620010af565b90815260200160405180910390208190555062000182734202a81f7e80834fe0b117eaf8ef4a49416be84860036200060960201b60201c565b6006604051620001929062001116565b908152602001604051809103902081905550620001cb735cff68cb84dfced2f4893daebd00c313262ad39760056200060960201b60201c565b6006604051620001db906200117d565b90815260200160405180910390208190555062000214738ce5a7cd9ccfdc7a3ba0f1d6347c770f9785ef87600a6200060960201b60201c565b60066040516200022490620011e4565b9081526020016040518091039020819055506200025d73a5209f6caa6a9701daecc0ed768b93e236888f1c600a6200060960201b60201c565b60066040516200026d906200124b565b908152602001604051809103902081905550620002a673e698e63712db23be29d5b648559313eaca481a7e600a6200060960201b60201c565b6006604051620002b690620012b2565b908152602001604051809103902081905550620002ef7360afff93a69b4f42154cadab0a1d0633969415fa60286200060960201b60201c565b6006604051620002ff9062001319565b9081526020016040518091039020819055506200033873934bf455fc0e52e58034c4ee3dd34cbfa400700e60036200060960201b60201c565b6006604051620003489062001380565b9081526020016040518091039020819055506200038173764989b4371a0db90e039bd6c0f0409a8dbdb47960076200060960201b60201c565b60066040516200039190620013e7565b908152602001604051809103902081905550620003b36200069560201b60201c565b620018e8565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006006905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000503576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004fa906200145f565b60405180910390fd5b620005176000838362000a2c60201b60201c565b80600260008282546200052b919062001481565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000582919062001481565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005e99190620014ef565b60405180910390a3620006056000838362000a3160201b60201c565b5050565b60006064826bffffffffffffffffffffffff1611158015620006585750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b6200066257600080fd5b60a0826bffffffffffffffffffffffff16901b8373ffffffffffffffffffffffffffffffffffffffff1617905092915050565b620006a5620003b960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006cb62000a3660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000724576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200071b906200155c565b60405180910390fd5b600062000736620003b960201b60201c565b905060006200074b8262000a6060201b60201c565b905060006040518061012001604052806040518060400160405280600481526020017f7465616d0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f736565645f73616c65000000000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f707269766174655f73616c65000000000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f7075626c69635f73616c6500000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f627573696e65737300000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f6d61726b6574696e67000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f726577617264730000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f6c7000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f666f756e646174696f6e00000000000000000000000000000000000000000000815250815250905060005b600981101562000a2657600080620009c960068585600981106200099a57620009996200157e565b5b6020020151604051620009ae919062001625565b90815260200160405180910390205462000aa860201b60201c565b9150915060006103e8600a83026bffffffffffffffffffffffff16870281620009f757620009f66200163e565b5b04905062000a0d87848362000aba60201b60201c565b505050808062000a1d906200166d565b91505062000971565b50505050565b505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008082915060a083901c9050915091565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000b2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b249062001731565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000ba0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b9790620017c9565b60405180910390fd5b62000bb383838362000a2c60201b60201c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000c3c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c339062001861565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000cd1919062001481565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405162000d379190620014ef565b60405180910390a362000d5284848462000a3160201b60201c565b50505050565b82805462000d6690620018b2565b90600052602060002090601f01602090048101928262000d8a576000855562000dd6565b82601f1062000da557805160ff191683800117855562000dd6565b8280016001018555821562000dd6579182015b8281111562000dd557825182559160200191906001019062000db8565b5b50905062000de5919062000de9565b5090565b5b8082111562000e0457600081600090555060010162000dea565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000e965780860481111562000e6e5762000e6d62000e08565b5b600185161562000e7e5780820291505b808102905062000e8e8562000e37565b945062000e4e565b94509492505050565b60008262000eb1576001905062000f84565b8162000ec1576000905062000f84565b816001811462000eda576002811462000ee55762000f1b565b600191505062000f84565b60ff84111562000efa5762000ef962000e08565b5b8360020a91508482111562000f145762000f1362000e08565b5b5062000f84565b5060208310610133831016604e8410600b841016171562000f555782820a90508381111562000f4f5762000f4e62000e08565b5b62000f84565b62000f64848484600162000e44565b9250905081840481111562000f7e5762000f7d62000e08565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000faf8262000f8b565b915062000fbc8362000f95565b925062000feb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000e9f565b905092915050565b6000620010008262000f8b565b91506200100d8362000f8b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562001049576200104862000e08565b5b828202905092915050565b600081905092915050565b7f7465616d00000000000000000000000000000000000000000000000000000000600082015250565b60006200109760048362001054565b9150620010a4826200105f565b600482019050919050565b6000620010bc8262001088565b9150819050919050565b7f736565645f73616c650000000000000000000000000000000000000000000000600082015250565b6000620010fe60098362001054565b91506200110b82620010c6565b600982019050919050565b60006200112382620010ef565b9150819050919050565b7f707269766174655f73616c650000000000000000000000000000000000000000600082015250565b600062001165600c8362001054565b915062001172826200112d565b600c82019050919050565b60006200118a8262001156565b9150819050919050565b7f7075626c69635f73616c65000000000000000000000000000000000000000000600082015250565b6000620011cc600b8362001054565b9150620011d98262001194565b600b82019050919050565b6000620011f182620011bd565b9150819050919050565b7f627573696e657373000000000000000000000000000000000000000000000000600082015250565b60006200123360088362001054565b91506200124082620011fb565b600882019050919050565b6000620012588262001224565b9150819050919050565b7f6d61726b6574696e670000000000000000000000000000000000000000000000600082015250565b60006200129a60098362001054565b9150620012a78262001262565b600982019050919050565b6000620012bf826200128b565b9150819050919050565b7f7265776172647300000000000000000000000000000000000000000000000000600082015250565b60006200130160078362001054565b91506200130e82620012c9565b600782019050919050565b60006200132682620012f2565b9150819050919050565b7f6c70000000000000000000000000000000000000000000000000000000000000600082015250565b60006200136860028362001054565b9150620013758262001330565b600282019050919050565b60006200138d8262001359565b9150819050919050565b7f666f756e646174696f6e00000000000000000000000000000000000000000000600082015250565b6000620013cf600a8362001054565b9150620013dc8262001397565b600a82019050919050565b6000620013f482620013c0565b9150819050919050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001447601f83620013fe565b915062001454826200140f565b602082019050919050565b600060208201905081810360008301526200147a8162001438565b9050919050565b60006200148e8262000f8b565b91506200149b8362000f8b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620014d357620014d262000e08565b5b828201905092915050565b620014e98162000f8b565b82525050565b6000602082019050620015066000830184620014de565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001544602083620013fe565b915062001551826200150c565b602082019050919050565b60006020820190508181036000830152620015778162001535565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b60005b83811015620015d8578082015181840152602081019050620015bb565b83811115620015e8576000848401525b50505050565b6000620015fb82620015ad565b62001607818562001054565b935062001619818560208601620015b8565b80840191505092915050565b6000620016338284620015ee565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200167a8262000f8b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620016b057620016af62000e08565b5b600182019050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600062001719602583620013fe565b91506200172682620016bb565b604082019050919050565b600060208201905081810360008301526200174c816200170a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000620017b1602383620013fe565b9150620017be8262001753565b604082019050919050565b60006020820190508181036000830152620017e481620017a2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600062001849602683620013fe565b91506200185682620017eb565b604082019050919050565b600060208201905081810360008301526200187c816200183a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620018cb57607f821691505b60208210811415620018e257620018e162001883565b5b50919050565b61168580620018f86000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b6040516101049190610e17565b60405180910390f35b61012760048036038101906101229190610ed2565b61038d565b6040516101349190610f2d565b60405180910390f35b6101456103b0565b6040516101529190610f57565b60405180910390f35b61017560048036038101906101709190610f72565b6103ba565b6040516101829190610f2d565b60405180910390f35b6101936103e9565b6040516101a09190610fe1565b60405180910390f35b6101c360048036038101906101be9190610ed2565b6103f2565b6040516101d09190610f2d565b60405180910390f35b6101f360048036038101906101ee9190610ffc565b610429565b6040516102009190610f57565b60405180910390f35b610211610471565b005b61021b6104f9565b6040516102289190611038565b60405180910390f35b610239610523565b6040516102469190610e17565b60405180910390f35b61026960048036038101906102649190610ed2565b6105b5565b6040516102769190610f2d565b60405180910390f35b61029960048036038101906102949190610ed2565b61062c565b6040516102a69190610f2d565b60405180910390f35b6102c960048036038101906102c49190611053565b61064f565b6040516102d69190610f57565b60405180910390f35b6102f960048036038101906102f49190610ffc565b6106d6565b005b60606003805461030a906110c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610336906110c2565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b6000806103986107ce565b90506103a58185856107d6565b600191505092915050565b6000600254905090565b6000806103c56107ce565b90506103d28582856109a1565b6103dd858585610a2d565b60019150509392505050565b60006006905090565b6000806103fd6107ce565b905061041e81858561040f858961064f565b6104199190611123565b6107d6565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104796107ce565b73ffffffffffffffffffffffffffffffffffffffff166104976104f9565b73ffffffffffffffffffffffffffffffffffffffff16146104ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e4906111c5565b60405180910390fd5b6104f76000610cae565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610532906110c2565b80601f016020809104026020016040519081016040528092919081815260200182805461055e906110c2565b80156105ab5780601f10610580576101008083540402835291602001916105ab565b820191906000526020600020905b81548152906001019060200180831161058e57829003601f168201915b5050505050905090565b6000806105c06107ce565b905060006105ce828661064f565b905083811015610613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060a90611257565b60405180910390fd5b61062082868684036107d6565b60019250505092915050565b6000806106376107ce565b9050610644818585610a2d565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106de6107ce565b73ffffffffffffffffffffffffffffffffffffffff166106fc6104f9565b73ffffffffffffffffffffffffffffffffffffffff1614610752576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610749906111c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b9906112e9565b60405180910390fd5b6107cb81610cae565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083d9061137b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ad9061140d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109949190610f57565b60405180910390a3505050565b60006109ad848461064f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a275781811015610a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1090611479565b60405180910390fd5b610a2684848484036107d6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a949061150b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b049061159d565b60405180910390fd5b610b18838383610d74565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b959061162f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c319190611123565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c959190610f57565b60405180910390a3610ca8848484610d79565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610db8578082015181840152602081019050610d9d565b83811115610dc7576000848401525b50505050565b6000601f19601f8301169050919050565b6000610de982610d7e565b610df38185610d89565b9350610e03818560208601610d9a565b610e0c81610dcd565b840191505092915050565b60006020820190508181036000830152610e318184610dde565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e6982610e3e565b9050919050565b610e7981610e5e565b8114610e8457600080fd5b50565b600081359050610e9681610e70565b92915050565b6000819050919050565b610eaf81610e9c565b8114610eba57600080fd5b50565b600081359050610ecc81610ea6565b92915050565b60008060408385031215610ee957610ee8610e39565b5b6000610ef785828601610e87565b9250506020610f0885828601610ebd565b9150509250929050565b60008115159050919050565b610f2781610f12565b82525050565b6000602082019050610f426000830184610f1e565b92915050565b610f5181610e9c565b82525050565b6000602082019050610f6c6000830184610f48565b92915050565b600080600060608486031215610f8b57610f8a610e39565b5b6000610f9986828701610e87565b9350506020610faa86828701610e87565b9250506040610fbb86828701610ebd565b9150509250925092565b600060ff82169050919050565b610fdb81610fc5565b82525050565b6000602082019050610ff66000830184610fd2565b92915050565b60006020828403121561101257611011610e39565b5b600061102084828501610e87565b91505092915050565b61103281610e5e565b82525050565b600060208201905061104d6000830184611029565b92915050565b6000806040838503121561106a57611069610e39565b5b600061107885828601610e87565b925050602061108985828601610e87565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806110da57607f821691505b602082108114156110ee576110ed611093565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061112e82610e9c565b915061113983610e9c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561116e5761116d6110f4565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006111af602083610d89565b91506111ba82611179565b602082019050919050565b600060208201905081810360008301526111de816111a2565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611241602583610d89565b915061124c826111e5565b604082019050919050565b6000602082019050818103600083015261127081611234565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006112d3602683610d89565b91506112de82611277565b604082019050919050565b60006020820190508181036000830152611302816112c6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611365602483610d89565b915061137082611309565b604082019050919050565b6000602082019050818103600083015261139481611358565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006113f7602283610d89565b91506114028261139b565b604082019050919050565b60006020820190508181036000830152611426816113ea565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611463601d83610d89565b915061146e8261142d565b602082019050919050565b6000602082019050818103600083015261149281611456565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006114f5602583610d89565b915061150082611499565b604082019050919050565b60006020820190508181036000830152611524816114e8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611587602383610d89565b91506115928261152b565b604082019050919050565b600060208201905081810360008301526115b68161157a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611619602683610d89565b9150611624826115bd565b604082019050919050565b600060208201905081810360008301526116488161160c565b905091905056fea2646970667358221220717aafc9b2dbb4fe2f0e961d8a881f14e1b327b3689941155c0c83341344f25164736f6c63430008090033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b6040516101049190610e17565b60405180910390f35b61012760048036038101906101229190610ed2565b61038d565b6040516101349190610f2d565b60405180910390f35b6101456103b0565b6040516101529190610f57565b60405180910390f35b61017560048036038101906101709190610f72565b6103ba565b6040516101829190610f2d565b60405180910390f35b6101936103e9565b6040516101a09190610fe1565b60405180910390f35b6101c360048036038101906101be9190610ed2565b6103f2565b6040516101d09190610f2d565b60405180910390f35b6101f360048036038101906101ee9190610ffc565b610429565b6040516102009190610f57565b60405180910390f35b610211610471565b005b61021b6104f9565b6040516102289190611038565b60405180910390f35b610239610523565b6040516102469190610e17565b60405180910390f35b61026960048036038101906102649190610ed2565b6105b5565b6040516102769190610f2d565b60405180910390f35b61029960048036038101906102949190610ed2565b61062c565b6040516102a69190610f2d565b60405180910390f35b6102c960048036038101906102c49190611053565b61064f565b6040516102d69190610f57565b60405180910390f35b6102f960048036038101906102f49190610ffc565b6106d6565b005b60606003805461030a906110c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610336906110c2565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b6000806103986107ce565b90506103a58185856107d6565b600191505092915050565b6000600254905090565b6000806103c56107ce565b90506103d28582856109a1565b6103dd858585610a2d565b60019150509392505050565b60006006905090565b6000806103fd6107ce565b905061041e81858561040f858961064f565b6104199190611123565b6107d6565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104796107ce565b73ffffffffffffffffffffffffffffffffffffffff166104976104f9565b73ffffffffffffffffffffffffffffffffffffffff16146104ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e4906111c5565b60405180910390fd5b6104f76000610cae565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610532906110c2565b80601f016020809104026020016040519081016040528092919081815260200182805461055e906110c2565b80156105ab5780601f10610580576101008083540402835291602001916105ab565b820191906000526020600020905b81548152906001019060200180831161058e57829003601f168201915b5050505050905090565b6000806105c06107ce565b905060006105ce828661064f565b905083811015610613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060a90611257565b60405180910390fd5b61062082868684036107d6565b60019250505092915050565b6000806106376107ce565b9050610644818585610a2d565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106de6107ce565b73ffffffffffffffffffffffffffffffffffffffff166106fc6104f9565b73ffffffffffffffffffffffffffffffffffffffff1614610752576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610749906111c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b9906112e9565b60405180910390fd5b6107cb81610cae565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083d9061137b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ad9061140d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109949190610f57565b60405180910390a3505050565b60006109ad848461064f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a275781811015610a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1090611479565b60405180910390fd5b610a2684848484036107d6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a949061150b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b049061159d565b60405180910390fd5b610b18838383610d74565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b959061162f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c319190611123565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c959190610f57565b60405180910390a3610ca8848484610d79565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610db8578082015181840152602081019050610d9d565b83811115610dc7576000848401525b50505050565b6000601f19601f8301169050919050565b6000610de982610d7e565b610df38185610d89565b9350610e03818560208601610d9a565b610e0c81610dcd565b840191505092915050565b60006020820190508181036000830152610e318184610dde565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e6982610e3e565b9050919050565b610e7981610e5e565b8114610e8457600080fd5b50565b600081359050610e9681610e70565b92915050565b6000819050919050565b610eaf81610e9c565b8114610eba57600080fd5b50565b600081359050610ecc81610ea6565b92915050565b60008060408385031215610ee957610ee8610e39565b5b6000610ef785828601610e87565b9250506020610f0885828601610ebd565b9150509250929050565b60008115159050919050565b610f2781610f12565b82525050565b6000602082019050610f426000830184610f1e565b92915050565b610f5181610e9c565b82525050565b6000602082019050610f6c6000830184610f48565b92915050565b600080600060608486031215610f8b57610f8a610e39565b5b6000610f9986828701610e87565b9350506020610faa86828701610e87565b9250506040610fbb86828701610ebd565b9150509250925092565b600060ff82169050919050565b610fdb81610fc5565b82525050565b6000602082019050610ff66000830184610fd2565b92915050565b60006020828403121561101257611011610e39565b5b600061102084828501610e87565b91505092915050565b61103281610e5e565b82525050565b600060208201905061104d6000830184611029565b92915050565b6000806040838503121561106a57611069610e39565b5b600061107885828601610e87565b925050602061108985828601610e87565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806110da57607f821691505b602082108114156110ee576110ed611093565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061112e82610e9c565b915061113983610e9c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561116e5761116d6110f4565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006111af602083610d89565b91506111ba82611179565b602082019050919050565b600060208201905081810360008301526111de816111a2565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611241602583610d89565b915061124c826111e5565b604082019050919050565b6000602082019050818103600083015261127081611234565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006112d3602683610d89565b91506112de82611277565b604082019050919050565b60006020820190508181036000830152611302816112c6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611365602483610d89565b915061137082611309565b604082019050919050565b6000602082019050818103600083015261139481611358565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006113f7602283610d89565b91506114028261139b565b604082019050919050565b60006020820190508181036000830152611426816113ea565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611463601d83610d89565b915061146e8261142d565b602082019050919050565b6000602082019050818103600083015261149281611456565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006114f5602583610d89565b915061150082611499565b604082019050919050565b60006020820190508181036000830152611524816114e8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611587602383610d89565b91506115928261152b565b604082019050919050565b600060208201905081810360008301526115b68161157a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611619602683610d89565b9150611624826115bd565b604082019050919050565b600060208201905081810360008301526116488161160c565b905091905056fea2646970667358221220717aafc9b2dbb4fe2f0e961d8a881f14e1b327b3689941155c0c83341344f25164736f6c63430008090033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.